.flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: normal;
    height: calc(100dvh - 70px);
    gap: 20px;
}

.flex-items{
    color: #fff;
    border-radius: 10px;
    height: 350px;
    padding: 10px;
    background: linear-gradient(145deg, #0a2040, #0c274c);
    box-shadow:  30px 30px 60px #07172d,
                -30px -30px 60px #0f3161;
}

.flex-items:nth-child(1) {
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 0;
    width: 350px;
}

.flex-items:nth-child(2) {
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 0;
    width: 350px;
    box-shadow:  0px 30px 60px #07172d,
                0px -35px 60px #0f3161;
}

table{
    font-size: 20px;
    text-align: left;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

table td:nth-child(even){
    padding-left: 20px;
}



#booking{
    position: relative;
    padding-left: 20px;
}

.header{
    font-size: 40px;
    display: flex;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

label{
    font-size: 27px;
}

#lists_bus{
    width: calc(100% - 20px);
    height: 50px;
    margin-bottom: 20px;
    font-size: 25px;
    color: #0B2447;
}

#seats{
    width: calc(100% - 20px);
    height: 50px;
    margin-bottom: 20px;
    font-size: 25px;
    color:#0B2447;
}

#button_pay{
    width: calc(100% - 20px);
    height: 50px;
    font-size: 25px;
    margin-top: 10px;
    margin-bottom: 20px;
    color:#0B2447;
    background-color: #fff;
}

#confirmation{
    font-size: 20px;
}

#howToBook{
    display: flex;
    justify-content: center;
    /* flex-direction: column; */
    align-items: center;
    gap: 5px;
    color: #fff;
}

.btnDiv{
    padding: 10px;
    background-color: #19376D;
    border-radius: 30px;
    flex-direction: row;
    margin: 5px;
}

.btnDiv > img{
    padding-right: 5px;
}

@media(max-width: 750px) {
    .flex-container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .flex-items {
        flex-grow: 1;
        flex-shrink: 0;
        width: 100%;
        margin-top: 30px;
    }
}

@media(max-width: 480px) {
    
    .flex-items:nth-child(n+1) {
        box-sizing: border-box;
        width: calc(100% - 30px);
    }

    .flex-items:nth-child(1) {
        box-shadow:  30px 30px 30px #07172d,
                    0px 0px 60px #0f3161;
    }

    .flex-items:nth-child(2) {
        box-shadow:  30px 0 60px #061529,
                -30px 0 60px #103365;
    }
}

